home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / UCRASM25.ARJ / UPRTBL.ASM < prev    next >
Assembly Source File  |  1991-10-12  |  479b  |  36 lines

  1. StdGrp        group    stdlib,stddata
  2. stddata        segment    para public 'sldata'
  3. ;
  4.         public    $uprtbl
  5. ;
  6. ; Output all chars up to the upper case letters here.
  7. ;
  8. $uprtbl        equ    this byte
  9. i        =    0
  10.         rept    'a'
  11.         db    i
  12. i        =    i + 1
  13.         endm
  14. ;
  15. ; Output uc for lc here
  16. ;
  17. i        =    'A'
  18.         rept    26
  19.         db    i
  20. i        =    i+1
  21.         endm
  22. ;
  23. ; Output all other characters here.
  24. ;
  25. i        =    'z'+1
  26.         rept    255-'z'
  27.         db    i
  28. i        =    i+1
  29.         endm
  30. ;
  31. stddata        ends
  32. ;
  33. stdlib        segment    para public 'slcode'
  34. stdlib        ends
  35.         end
  36.